From 3c400823167799b167b621549e776688c8624953 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 28 Jun 2014 15:23:29 -0400 Subject: [PATCH] widget-factory: Make the entry progress variable too Make the scale that currently controls the speed of the progressbar control the progress speed in the entry as well. --- demos/widget-factory/widget-factory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/widget-factory/widget-factory.c b/demos/widget-factory/widget-factory.c index 09b3a09373..ff0c3dc42b 100644 --- a/demos/widget-factory/widget-factory.c +++ b/demos/widget-factory/widget-factory.c @@ -182,7 +182,7 @@ pulse_entry (GtkEntry *entry) { gtk_entry_progress_pulse (entry); - pulse_entry_id = g_timeout_add (100, (GSourceFunc)pulse_entry, entry); + pulse_entry_id = g_timeout_add (pulse_time, (GSourceFunc)pulse_entry, entry); return G_SOURCE_REMOVE; } -- 2.30.2